home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / DB_CLIPP / 0669.ZIP / STATUS.DOC < prev    next >
Text File  |  1987-01-08  |  2KB  |  65 lines

  1.  
  2.       Author    : Wee-Ming Chong
  3.       Date      : January 8, 1987
  4.       Copyright : All rights reserved by the author.
  5.       Notes     : Placed into the public domain for use with Clipper
  6.                   Winter '85 version. See docs below.
  7.       Trademarks: Clipper is a trademark of Nantucket Inc.
  8.                   dBASE is a trademark of Ashton-Tate Inc.
  9.  
  10.       Documentation
  11.       Files : STATUS.DOC  --- This file you are reading
  12.               STATUS.OBJ  --- The object file that contain the functions
  13.               TEST.PRG    --- A test program to test the functions.
  14.  
  15.       The file status.obj contains three simple public routines written
  16.       in assembler for use with Clipper. They are :
  17.  
  18.       NUM_LOCK(), CAP_LOCK(), SCR_LOCK()
  19.  
  20.       Simply link the object file along with your Clipper programs
  21.       and use the functions like any Clipper function. The result
  22.       of the function call can also be assigned to boolean variables
  23.       or checked immediately.
  24.  
  25.       Example :
  26.               .. statements ..
  27.  
  28.               if NUM_LOCK()
  29.                  ? 'Numlock is on'
  30.               else
  31.                  ? 'Numlock is off'
  32.               endif
  33.  
  34.               .. statements ..
  35.  
  36.               caplock = cap_lock()
  37.               if caplock
  38.                  ? 'Caplock is on'
  39.               else
  40.                  ? 'Caplock is off'
  41.               endif
  42.  
  43.       I wrote the above functions out of response to a fellow BBS'er
  44.       request. I did not include the source file to the functions
  45.       because :
  46.  
  47.       1. I intend to add more functions from time to time. ( I do
  48.          dBASE programming from time to time).
  49.       2. The functions may not work with Clipper Autumm '86 ( I did
  50.          not upgrade my compiler yet ). The functions have only been
  51.          tested with Winter '85 version.
  52.       3. I wish to maintain consistency in the function and procedure
  53.          calls that I may add later on.
  54.       4. I am basically shy.
  55.  
  56.       Direct queries to :
  57.  
  58.       Wee-Ming Chong
  59.       61 Cook Street
  60.       San Francisco
  61.       CA 94118
  62.       ( 415 ) 668-0117 (Night or day)
  63.  
  64.  
  65.